home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / hostd.h < prev    next >
C/C++ Source or Header  |  1992-12-13  |  353b  |  15 lines

  1. #ifndef _HOSTD
  2. #define _HOSTD
  3.  
  4. typedef struct Dev_ClientInfo {
  5.     int        hostNumber;
  6.     int        hostState;
  7. } Dev_ClientInfo;
  8.  
  9. #define    DEV_CLIENT_STATE_NEW_HOST    0x1
  10. #define    DEV_CLIENT_STATE_DEAD_HOST    0x2
  11. #define    DEV_CLIENT_START_LIST        0xF004    /* Unlikely to be ioctl # */
  12. #define    DEV_CLIENT_END_LIST        0xF008    /* Unlikely to be ioctl # */
  13.  
  14. #endif /* _HOSTD */
  15.